﻿.section-hero-unificado {
    padding: 60px 0;
    background: #fafafa;
    position: relative;
}
.bc-banner img{
    width: 100%;
}
.bc-page{
    margin-top: 235px;
}
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-unica {
    max-width: 580px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    flex: 1;
    max-width: 520px;
}

.hero-title {
    font-size: 34px;
    font-weight: 700;
    color: #0aa69a;
    margin-bottom: 8px;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 16px;
    color: #333;
}

.hero-lists {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.hero-lists ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-lists li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: #355;
    font-size: 16px;
}

.hero-lists li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #0aa69a;
    font-weight: bold;
}

.hero-tour {
    color: #0aa69a;
    font-weight: 600;
    margin-bottom: 12px;
}

.btn-hero {
    display: inline-block;
    background: #6fc04d;
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

/* Botão flutuante */
.btn-flutuante {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #6fc04d;
    color: white;
    padding: 16px 20px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 999;
}

/* Responsivo */
@media(max-width:980px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-lists {
        justify-content: center;
    }
}


/* ===========================
   SEÇÃO SERVIÇOS
=========================== */

.sec-servicos {
    padding: 70px 0;
    background: #f8f9f7;
    position: relative;
    border-radius: 20px;
}

.servicos-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

/* --- Coluna esquerda --- */
.servicos-esquerda {
    flex: 1;
    max-width: 480px;
}

.servicos-label {
    color: #7ab455;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.servicos-titulo {
    font-size: 32px;
    color: #109e8e;
    font-weight: 700;
    margin: 10px 0 25px;
    line-height: 1.2;
}

/* .servicos-imagem img{
  width:100%;
  border-radius:20px;
  box-shadow:0 8px 28px rgba(0,0,0,0.15);
} */

.servicos-imagem {
    width: 100%;
    height: 557px;
    border-radius: 20px;
    overflow: hidden;
    /* mantém recorte perfeito */
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.servicos-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* mantém proporção e não distorce */
    object-position: center;
    /* sempre centraliza a imagem */
    display: block;
}


/* --- Coluna direita --- */
.servicos-listas {
    flex: 1;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.servico-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    background-color: #f8f9f7;
}

.servico-card:nth-child(odd) {
    margin-left: 40px;
}

.servico-card:nth-child(even) {
    margin-left: 0;
}




.servico-icon {
    width: 48px;
    height: 48px;
}

.servico-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #005b4f;
}

.servico-card p {
    margin: 6px 0 0;
    color: #3a4a49;
    font-size: 14px;
    line-height: 1.4;
}

.servico-lista {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.servico-lista li {
    position: relative;
    margin-bottom: 6px;
    padding-left: 22px;
    /* espaço para o ícone */
    font-size: 14px;
    color: #3a4a49;
}

/* check verde */
.servico-lista li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #6DB44E;
    /* verde do layout */
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

.diferenciais-section {
    text-align: center;
    padding: 80px 0;
}

.diferenciais-subtitulo {
    color: #6DB44E;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

.diferenciais-titulo {
    color: #009C9C;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

.diferenciais-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.diferencial-card {
    width: 240px;
    height: 300px;
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}


.icon-wrapper {
    width: 100px;
    height: 100px;
    /* background: #C9F1EF; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}


.icon-wrapper img {
    width: 100%;
    height: 100%;
}

.diferencial-card p {
    color: #004A4A;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    text-align: left;
}

.cuidado-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.cuidado-container {
    width: 88%;
    background: #ffffff;
    border-radius: 30px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    gap: 50px;
}

.cuidado-texto {
    width: 100%;
    margin-left: 13%;
}

.cuidado-texto h2 {
    font-size: 34px;
    font-weight: 700;
    color: #00A0A0;
    margin-bottom: 20px;
}

.cuidado-texto p {
    font-size: 16px;
    color: #3A4A49;
    line-height: 1.5;
}

.cuidado-imagem img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.cuidado-icone {
    position: absolute;
    right: 50%;
    bottom: -2px;
    width: 120px;
    height: 120px;
    background: #C9F1EF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateX(50%);
}

.cuidado-icone img {
    width: 70px;
    /* ícone maior, igual ao layout */
    height: 70px;
}


/* --- SEÇÃO DE CONTATO --- */
.contato-titulo {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0ab79d; /* cor do print */
}
.contato-section {
    padding: 60px 0;
    background: #fff;
    width: 100%;
}

.container-contato {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1250px;
    margin: auto;
    padding: 20px;
}

.contato-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contato-item h4 {
    margin: 0 0 6px;
    color: #0ab79d; /* cor igual ao layout do print */
    font-size: 17px;
    font-weight: 700;
}
.contato-item .whatss{
        font-size: 14px;
    color: #444;
    line-height: 1.5;
    text-decoration: underline;
}

.contato-item p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.contato-icon i {
    font-size: 28px;
    color: #0ab79d;
}

/* MAPA */
/* .mapa-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
} */

.mapa-wrapper img {
    width: 40%;
    max-width: 1250px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mapa-wrapper {
    width: 65%;
    margin: 40px auto;
}


/* ÁREA GERAL DA SEÇÃO */
.cc-section {
    background-color: #c8efef;
    /* padding: 80px 40px; */
    border-radius: 22px;
    max-width: 1400px;
    margin: 0 auto;
    height: 575px;
}

/* WRAPPER INTERNO */
.cc-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}


.cc-left img {
  width: 480px;
  height: auto;
  border-radius: 16px;
}

/* IMAGEM GRANDE */
.cc-left {
    position: relative;
    top: -15px;
}

.cc-left img {
  width: 480px;
  height: auto;
  border-radius: 16px;
}

/* BLOCO DE LOGOS — CORRIGIDO */
.cc-logos {
    position: absolute;
    bottom: 22px;
    left: 59%;
    transform: translateX(-50%);
    width: 300px;
    height: 120px;
    position: absolute;
}
/* TODOS OS ITENS DENTRO */
.cc-logos .cc-logo,
.cc-logos .cc-plus {
  position: absolute;
}
/* LOGO 1 – ACIMA E À ESQUERDA */
.cc-logo.onco {
    top: -12px;
    left: 85px;
    background: #fff;
    padding: 12px 22px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* LOGO 2 – ABAIXO E À DIREITA */
.cc-logo.csj {
    bottom: 0px;
    right: -39px;
    background: #fff;
    padding: 12px 22px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}


/* CARTÕES DOS LOGOS */
.cc-logo {
  /* background: #fff; */
  padding: 12px 20px;
  border-radius: 18px;
  /* box-shadow: 0 4px 16px rgba(0,0,0,0.15); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-logo img {
  height: 38px;
  width: auto;
}

/* ÍCONE + CENTRALIZADO */
.cc-plus {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #009b9f;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}



/* ÍCONE + */
.cc-plus {
    background: #009b9f;
    color: #fff;
    font-size: 32px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 99;
}

/* TEXTO À DIREITA */
.cc-right {
  max-width: 520px;
}

.cc-right h2 {
  color: #009b9f;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.cc-right p {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* RESPONSÁVEL TÉCNICO */
.cc-footer-box {
  margin: 60px auto 0;
  background: #fff;
  padding: 18px 30px;
  width: fit-content;
  border-radius: 14px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
  font-size: 1rem;
  text-align: center;
}

.cc-footer-box p {
  margin: 0;
  color: #222;
}


/* --- Botão flutuante --- */
.btn-flutuante2 {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #6fc04d;
    color: white;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 999;
}

/* --- RESPONSIVO --- */
@media(max-width:980px) {
    .servicos-wrapper {
        flex-direction: column;
    }

    .servicos-esquerda,
    .servicos-listas {
        max-width: 100%;
    }

    .servicos-titulo {
        text-align: center;
    }
}

/* Responsivo */
@media (max-width: 900px) {
    .cuidado-container {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }

    .cuidado-imagem img {
        height: 300px;
        margin-top: 30px;
    }

    .cuidado-icone {
        right: 50%;
        transform: translateX(50%);
        bottom: -45px;
    }
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .container-contato {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .container-contato {
        grid-template-columns: 1fr;
    }

    .contato-item {
        align-items: flex-start;
    }
}

@media (max-width: 835px) {
.bc-page{
    margin-top: 0px;
}
}

.page-contato{
    padding: 120px 0 100px;
}
.page-contato h5{
    font-weight: bold;
    margin-bottom: 20px;
}
.page-contato #accordion .card{
    background: transparent;
    border: 0;
}
.page-contato #accordion .card .card-body{
    padding-left: 58px;
    color: #6b6b6b;
    padding-top: 10px;
    font-family: 'Roboto';
}
.page-contato #accordion .card .card-header{
    border: 0;
    background: transparent;
    padding-left: 0;
}
.page-contato #accordion .card .card-header button{
    color: #3db166;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.card-header h5 > button:after {
    float: left !important;
    content: "-";
    padding-right: 5px;
    margin-top: -7px;
    margin-right: 32px;
    height: 25px;
    font-size: 20px;
    font-family: initial;
}
.card-header h5 > button.collapsed:after {
    float: left !important;
    content:"+";
}
.card-header h5 > button:hover, 
.card-header h5 > button:active, 
.card-header h5 > button:focus  {
    text-decoration:none;
}
.internal-bannerParallax{
    text-align: center;
    height: 500px;
    padding-top: 200px;
    background-attachment:fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.internal-bannerParallax .subtitle-banner{
    font-size: 75px;
}
.page-localizacao{
    padding: 0;
}
.page-contato .rede-social{
    background: #FFF;
    text-align: center;
    padding: 85px 0;
}
.page-contato .rede-social a i{
    color: #1e1e1e;
    font-size: 20px;
}
.page-contato .contatos{
    background-color: #161616;
    color: #FFF;
}
.page-contato .contatos .col-md-4{
    padding: 80px 30px;
}
.page-contato .contatos i{
    font-size: 40px;
    margin-bottom: 40px;
    margin-left: 10px;
}
.page-contato .contatos h3{
    font-weight: bold;
    margin-bottom: 30px;
}
.page-contato .contatos p{
    font-family: 'Roboto';
}
.page-contato .contatos p strong{
    font-size: 18px;
}
.page-contato .contatos a, .page-contato .contatos .telefones, .page-contato .contatos .email{
    color: #3db166;
    line-height: 26px;
}
.page-contato .formulario{
    text-align: center;
    padding: 100px 0;
}
.page-contato .formulario h2{
    font-weight: bold;
    font-size: 30px;
    color: #161616;
    margin-bottom: 20px;
}
.page-contato .formulario h5{
    color: #747474;
    font-weight: 100;
    font-size: 19px;
    line-height: 32px;
}
.page-contato .formulario .formContato{
    width: 60%;
    margin: 60px auto 0;
    float: none;
    display: block;
    padding: 0 20px;
    text-align: left;
}
.page-contato .formulario .formContato select {
    height: 35px;
    width: 100%;
}
.page-contato .formulario .formContato .form-group{
    float: left;
    width: 100%;
}
.page-contato .formulario .formContato label{
    color: #6b6b6b;
}
.page-contato .formulario .formContato input,.page-contato .formulario .formContato textarea{
    box-shadow: none;
    width: 100%;
    color: #6b6b6b;
    border: 1px solid rgb(215, 215, 215);
    height: 70px;
}
.page-contato .formulario .formContato input{
    height: 35px;
    padding-left: 20px;
}
.page-contato .formulario .formContato label{
    width: 100%;
}
.page-contato .formulario .formContato input[type='checkbox'], .page-contato .formulario .formContato input[type='radio']{
    height: auto;
    width: auto;
    margin-left: 20px;
}
.page-contato .formulario .formContato input[type='submit'], .page-contato .formulario .formContato input[type='button']{
    width: 98px;
    background: #3db166;
    font-weight: bold;
    color: #FFF;
    border: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
    margin-left: 0;
    cursor: pointer;
}
.page-contato .formulario .formContato button[type='button']{
    width: 98px;
    background: #3db166;
    font-weight: bold;
    color: #FFF;
    border: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
    margin-left: 0;
    margin-top: -10px;
    cursor: pointer;
}
.page-contato .formulario .form-group .col-md-6, .page-contato .formulario .form-group .col-md-4{
    float: left;
    margin-bottom: 20px;
}
.page-contato .formulario .form-group .col-md-6:first-child, .page-contato .formulario .form-group .col-md-4:first-child{
    padding-left: 0;
}
.page-contato .formulario .form-group .col-md-6:last-child, .page-contato .formulario .form-group .col-md-4:last-child{
    padding-right: 0;
}
.containerInput {
    display: block;
    width: auto !important;
    padding-left: 26px; 
    margin-top: 18px;   
  	margin-bottom: 12px;
  	float: left;
    margin-right: 25px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
}
.containerInput input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid #009581;
    border-radius: 50%;
}
.containerInput:hover input ~ .checkmark {
    background-color: rgb(245, 245, 245);
}
.containerInput input:checked ~ .checkmark {
    background-color: #009581;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.containerInput input:checked ~ .checkmark:after {
    display: block;
}
.containerInput .checkmark:after {
    top: 4px;
    left: 4px;    
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
.formContato h4{
    float: left;
    width: 100%;
}
.align60{
    width: 60%;
}
.align40{
    width: 40%;
}
.align60, .align40{
    float: left;
    margin-top: 10px;
}
.checkbox-termo {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    transform: scale(1.2);
}

.containerInput .checkmark.checkboxmark:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 0;
    background: transparent;
}
.checkmark.checkboxmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkmark.checkboxmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid #009581;
    border-radius: 0;
}
.col-md-3{
    float: left;
}
.listaCheck .col-md-4{
    margin-bottom: 0 !important;
}
fieldset{
    float: left;
    width: 100%;
}
fieldset .add, fieldset .delete{
    width: auto !important;
    margin: 0;
    background: #a9a9a9;
    color: #FFF !important;
    padding: 8px 15px;
    height: auto !important;
    font-size: 16px;
}
fieldset .add:hover{
    background-color: #3e3e3e;
}
fieldset label {
    margin-top: 20px;
}
fieldset .delete, fieldset .delete:hover{
    margin-top: 10px;
    background-color: #b50000;
}
.col-md-12{
    float: left;
}
.columnTipos {
    margin-top: 0px;
}
.col-xs-6.col-md-12 {
    padding: 0;
}
@media (min-width:1400px){
	.internal-bannerParallax{
		background-attachment:unset !important;
	}
}
@media (max-width: 2600px) and (min-width:1400px){
	.internal-bannerParallax{
		height:600px;
	}
}
@media (max-width: 1024px){
	.internal-bannerParallax{
		background-attachment:unset !important;
	}
    .align60, .align40 {
        min-height: 52px;
    }
    .columnTipos {
        margin-top: 0px;
    } 
}
@media(max-width:780px){
	.internal-bannerParallax{
		background-attachment: unset !important;
	}
}
@media (max-width: 768px) {
    .internal-bannerParallax .subtitle-banner {
        font-size: 32px;
    }
    .internal-bannerParallax{
        height: 200px;
        padding-top: 60px;
    }
    .page-contato .contatos .col-md-4 {
        padding: 30px;
    }
    .page-contato .row{
        padding: 40px 0;
    }
    .page-contato .formulario {
        padding: 70px 0;
    }
    .page-contato .formulario h2{
        font-size: 32px;
    }
    .page-contato .formulario h5 {
        font-size: 18px;
        line-height: 28px;
        padding: 0 30px;
    }
    .page-contato .formulario .formContato {
        width: 90%;
    }
    .page-contato .formulario .formContato input {
        height: 40px;
    }
    .page-contato .rede-social {
        padding: 60px 0;
    }
    .columnTipos{
        margin-top: -15px;
    }
}
@media (max-width: 480px){
    .align60, .align40{
        min-height: 55px;
    }
    .page-contato .formulario .form-group .col-md-4,.page-contato .formulario .form-group .col-md-6,.page-contato .formulario .form-group .col-md-12{
        padding: 0;
    }
}
